home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / clang / tcomm50.zip / LCBBS.H < prev    next >
Text File  |  1988-09-26  |  522b  |  31 lines

  1. /*
  2. ** ppcevent.h -
  3. **    Event Timers -
  4. **    PPC Communication Services -
  5. **    Copyright (c) 1988, Ralph B. Mace
  6. **        -- All Rights Reserved --
  7. */
  8.  
  9. #ifndef _PPC_EV
  10. #define _PPC_EV    1
  11.  
  12. #include <time.h>
  13.  
  14. #define online(x) (lc_mstat(x) & DCD)
  15.  
  16. #ifdef M_I86
  17. #define setmem(d,c,v) memset(d,v,c)
  18. #endif
  19.  
  20. /*
  21. **    function prototypes
  22. */
  23. int check_for_call(unsigned);
  24. int get_modem_reply(unsigned);
  25. void disconnect(unsigned);
  26. int reset_modem(unsigned);
  27. long new_event(unsigned);
  28. int check_event(long);
  29.  
  30. #endif
  31.